-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add action to create a module release PR #66
base: v3
Are you sure you want to change the base?
Conversation
eb2e843
to
672a436
Compare
db2ad4d
to
09a0cb5
Compare
64eaaf5
to
0d0c225
Compare
2114a18
to
467cb1f
Compare
166c090
to
e3c3bba
Compare
Co-authored-by: Ewoud Kohl van Wijngaarden <[email protected]>
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perforce makes a full clone with:
- name: "Checkout"
uses: "actions/checkout@v4"
with:
fetch-depth: 0
In my tests that wasn't required. Maybe it's for some edge cases. Based on their git history I didn't find any explanation.
Tested successfully at voxpupuli/puppet-example#82 . Followup PR for the optional input: voxpupuli/puppet-example#83 |
# https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication | ||
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: bundle exec rake release:prepare | ||
- name: Create pull Request |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at voxpupuli/puppet-example#82 I wonder if we can come up with some better instructions in the body. For example, it could link to https://voxpupuli.org/docs/releasing_version/ though that isn't really explaining it well for this new process.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My idea was to link to https://voxpupuli.org/docs/releasing_version/ and update it
No description provided.